/* video::-webkit-media-controls-enclosure {
    display: none;
}

video::-internal-media-controls-download-button {
    display: none;
}

video::-webkit-media-controls-start-playback-button {
    display: none !important;
    -webkit-appearance: none;
} */

.video-plan {
    background: url('../img/no-pic.jpg') #ebebeb;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
    color: white;
    font-family: 'Lucida Grande', 'Trebuchet MS', Arial, Sans-Serif;
    font-size: 12px;
}

.video-plan .log {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
}

.video-plan video {
    display: block;
    width: 100%;
}

.video-plan i {
    font-size: 40px;
}


.video-plan>div {
    position: absolute;
    z-index: 999999;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    /* background-color: rgba(0, 0, 0, 0.3); */
    padding: 0.5em;
    top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.video-plan .wait {
    padding-left: 1em;
    align-items: flex-end;
}

.video-plan .controls {
    display: none;
}


.playing .controls {
    display: flex;
    background: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(255, 255, 255, 0));
    ;
    /* background-color: rgba(0, 0, 0, .5); */
}

.playing .controls .duration {
    background: none;
}

.playing .controls>div {
    margin: 3px;
}

.playing .wait {
    display: none;
}

.video-plan .controls>.v-progress {
    position: relative;
    margin-top: 0.4em;
    content: '';
    height: 14px;
    padding: 5px 0;
    border-radius: 2px;
    width: 100%;
}

.video-plan .controls>.v-progress:after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    height: 4px;
    background-color: #999;
}

.video-plan .controls .currentTime {
    flex-shrink: 0;
}

.video-plan .controls .v-progress>div {
    position: absolute;
    content: '';
    height: 4px;
    z-index: 99;
    background-color: white;
    border-radius: 2px;
    display: block;
    width: 0%;
}

.video-plan .controls .v-progress i {
    display: block;
    position: absolute;
    top: -3px;
    right: -5px;
    width: 10px;
    height: 10px;
    background-color: white;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, .5);
}


.video-plan .duration {
    background-color: rgba(0, 0, 0, .5);
    padding: 0 0.5em;
    line-height: 1.6em;
    color: white;
    border-radius: 4px;
    flex-shrink: 0;
}

.video-plan .controls .duration {
    padding: 0;
}

.video-plan i.play-btn {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    background-image: url(../img/player.png);
    background-size: 100% 100%;
}

.video-plan .player {
    width: 0;
    height: 0;
    border-left: 0.6em solid transparent;
    border-right: 0.6em solid transparent;
    border-top: 1em solid white;
    transform: rotate(-90deg);
}

.video-plan .stop {
    border: none;
    transform: none;
    display: flex;
    width: 1.8em;
    padding-right: 0.2em;
    height: 1.1em;
    justify-content: space-between;
    align-items: center;
}

.video-plan .stop:before {
    content: '';
    border: none;
    width: 0.35em;
    height: 1.1em;
    background-color: white;
}

.video-plan .stop:after {
    content: '';
    border: none;
    width: 0.35em;
    height: 1.1em;
    background-color: white;
}

.video-plan i.full {
    background-image: url(../img/full.png);
    background-size: 100% 100%;
    width: 0.8em;
    height: 0.8em;
    flex-shrink: 0;
}